home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 2 / Gold Medal Software Volume 2 (Gold Medal) (1994).iso / bbsutils / tb502man.arj / P9 < prev    next >
Text File  |  1994-02-12  |  2KB  |  63 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.      The TriBBS Bulletin Board System                                     9
  7.  
  8.      Although  TriBBS will  run  by simply  executing  BBS.EXE at  the  DOS
  9.      prompt,  it will not be able to  properly run events and doors without
  10.      being executed by BOARD.BAT.  Consequently, you should always start up
  11.      your BBS by entering the following at the DOS prompt:
  12.  
  13.      BOARD
  14.  
  15.      As  we said though, BOARD.BAT may need  to be modified.  The following
  16.      is a listing of BOARD.BAT:
  17.  
  18.      echo off
  19.      cd \tribbs
  20.      if exist door.bat del door.bat
  21.      if exist event.bat del event.bat
  22.      if exist endbbs del endbbs
  23.      bbs
  24.      if exist door.bat door
  25.      if exist event.bat event
  26.      if exist endbbs goto end
  27.      board
  28.      :end
  29.  
  30.      Note how the second line of BOARD.BAT changes the current directory to
  31.      the TriBBS's  main directory.  If  your TriBBS setup uses  a different
  32.      directory other  than "\tribbs", you will  have to use some  type of a
  33.      text editor to make the appropriate change.
  34.  
  35.  
  36.      Getting TriBBS to Run on Boot Up
  37.      --------------------------------
  38.  
  39.      You  will want your TriBBS  system to automatically  start up whenever
  40.      your computer reboots.   This  can be accomplished  by performing  two
  41.      simple modifications to  your AUTOEXEC.BAT  file.  First  of all,  you
  42.      should modify or  create a SET  PATH or PATH  command to include  your
  43.      main  TriBBS directory.   At the  end of  your AUTOEXEC.BAT  file, you
  44.      should put the  command BOARD.   That way DOS  will automatically  run
  45.      TriBBS each time the computer is rebooted.  The following  is a sample
  46.      AUTOEXEC.BAT  file before it has been  modified to automatically start
  47.      up TriBBS:
  48.  
  49.      @ECHO OFF
  50.      PROMPT $p$g
  51.      PATH C:\DOS;C:\WINDOWS;C:\QEMM;C:\ZIP
  52.  
  53.      The  following is  the same  AUTOEXEC.BAT file  after the  appropriate
  54.      changes have been made to it for TriBBS:
  55.  
  56.      @ECHO OFF
  57.      PROMPT $p$g
  58.      PATH C:\TRIBBS;C:\DOS;C:\WINDOWS;C:\QEMM;C:\ZIP
  59.      BOARD
  60.  
  61.  
  62.  
  63.